home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / comm1 / intsdkss.lha / password / README < prev   
Text File  |  1996-04-09  |  2KB  |  30 lines

  1. The information in this directory should be all you need to create a password
  2. encryption library for use with I-Net 225.  Headers are in the 'include'
  3. directory one level back (with the rest of the network include files).
  4.  
  5. Simple create a shared library named 'password.library' to the given specs,
  6. and copy it to 'Inet:libs'.
  7.  
  8. Upon network startup, if 'Inet:libs/password.library' can be opened, and calls
  9. to 's_crypt()' in the socket library will wind up calling the 'make_password()'
  10. entry in 'password.library'.  All of the I-Net 225 clients & servers that deal
  11. with passwords call 's_crypt()'.
  12.  
  13. If 'Inet:libs/password.library' wasn't found, calls to 's_crypt()' will use
  14. the old standard encryption method used by the older Commodore AS225 software.
  15.  
  16. Two things to remember:
  17.  
  18.     1)  Since the password.library is opened at network start, and held
  19.         open until the network shuts down, if you copy a new password
  20.         library file into 'Inet:libs' while the network is running, you
  21.         will have to shut the network down and bring it back up for the
  22.         new password library to be brought into use.  The library is
  23.         held open until network shutdown for performance reasons.
  24.  
  25.     2)  If you do change password.library files, or simply install one
  26.         where you didn't have one before (as in a new install of the
  27.         I-Net 225 package), you *must* delete all encrypted passwords
  28.         from the 'Inet:db/passwd' file, and re-enter them with the
  29.         'Inet:c/passwd' program, or no passwords will work.
  30.